/*
	Theme Name: Income Systems Ltd
	Author: Connor Wilkinson
	HTML5 ✰ Boilerplate
	style.css contains a reset, font normalization and some base styles.
*/

span, applet, object, iframe,
blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  color: #2b3e51;
  background-color: #ffffff;
}

a {
  color: #2c97de;
  text-decoration: none;
}

/* -------------------------------- 

Form

-------------------------------- */
.cd-form {
  width: 90%;
  max-width: 600px;
}
.cd-form::after {
  clear: both;
  content: "";
  display: table;
}
.cd-form fieldset {
  margin: 24px 0;
}
.cd-form legend {
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 2rem;
  border-bottom: 1px solid #ecf0f1;
}
.cd-form div {
  /* form element wrapper */
  position: relative;
  margin: 20px 0;
}
.cd-form h4, .cd-form .cd-label {
  font-size: 1.3rem;
  color: #94aab0;
  margin-bottom: 10px;
}
.cd-form .cd-label {
  display: block;
}
.cd-form input, .cd-form textarea, .cd-form select, .cd-form label {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  color: #2b3e51;
}
.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form textarea,
.cd-form select,
.cd-form legend {
  display: block;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cd-form input[type="text"],
.cd-form input[type="email"],
.cd-form textarea,
.cd-form select {
  /* general style for input elements */
  padding: 12px;
  border: 1px solid #cfd9db;
  background-color: #ffffff;
  border-radius: .25em;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
.cd-form input[type="text"]:focus,
.cd-form input[type="email"]:focus,
.cd-form textarea:focus,
.cd-form select:focus {
  outline: none;
  border-color: #2c97de;
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.2);
}
.cd-form .cd-select {
  /* select element wapper */
  position: relative;
}
.cd-form .cd-select::after {
  /* arrow icon for select element */
  content: '';
  position: absolute;
  z-index: 1;
  right: 16px;
  top: 50%;
  margin-top: -8px;
  display: block;
  width: 16px;
  height: 16px;
  background: url("http://www.income-systems.com/wp-content/themes/img/cd-icon-arrow.svg") no-repeat center center;
  pointer-events: none;
}
.cd-form select {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.cd-form select::-ms-expand {
  display: none;
}
.cd-form .cd-form-list {
  margin-top: 16px;
}
.cd-form .cd-form-list::after {
  clear: both;
  content: "";
  display: table;
}
.cd-form .cd-form-list li {
  /* wrapper for radio and checkbox input types */
  display: inline-block;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0 26px 16px 0;
  float: left;
}
.cd-form input[type=radio],
.cd-form input[type=checkbox] {
  /* hide original check and radio buttons */
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  opacity: 0;
  z-index: 2;
}
.cd-form input[type="radio"] + label,
.cd-form input[type="checkbox"] + label {
  padding-left: 24px;
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after {
  /* custom radio and check boxes */
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  width: 16px;
  height: 16px;
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="checkbox"] + label::before {
  border: 1px solid #cfd9db;
  background: #ffffff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}
.cd-form input[type="radio"] + label::before,
.cd-form input[type="radio"] + label::after {
  border-radius: 50%;
}
.cd-form input[type="checkbox"] + label::before,
.cd-form input[type="checkbox"] + label::after {
  border-radius: .25em;
}
.cd-form input[type="radio"] + label::after,
.cd-form input[type="checkbox"] + label::after {
  background-color: #2c97de;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.4);
  display: none;
}
.cd-form input[type="radio"] + label::after {
  /* custom image for radio button */
  background-image: url("http://www.income-systems.com/wp-content/themes/img/cd-icon-radio.svg");
}
.cd-form input[type="checkbox"] + label::after {
  /* custom image for checkbox */
  background-image: url("http://www.income-systems.com/wp-content/themes/img/cd-icon-check.svg");
}
.cd-form input[type="radio"]:focus + label::before,
.cd-form input[type="checkbox"]:focus + label::before {
  /* add focus effect for radio and check buttons */
  box-shadow: 0 0 5px rgba(44, 151, 222, 0.6);
}
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::after {
  display: block;
}
.cd-form input[type="radio"]:checked + label::before,
.cd-form input[type="radio"]:checked + label::after,
.cd-form input[type="checkbox"]:checked + label::before,
.cd-form input[type="checkbox"]:checked + label::after {
  -webkit-animation: cd-bounce 0.3s;
  -moz-animation: cd-bounce 0.3s;
  animation: cd-bounce 0.3s;
}
.cd-form textarea {
  min-height: 200px;
  resize: vertical;
  overflow: auto;
}
.cd-form input[type="submit"] {
  /* button style */
  border: none;
  background: #2c97de;
  border-radius: .25em;
  padding: 16px 20px;
  color: #ffffff;
  font-weight: bold;
  float: right;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.no-touch .cd-form input[type="submit"]:hover {
  background: #42a2e1;
}
.cd-form input[type="submit"]:focus {
  outline: none;
  background: #2b3e51;
}
.cd-form input[type="submit"]:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}
.cd-form [required] {
  background: url("http://www.income-systems.com/wp-content/themes/img/cd-required.svg") no-repeat top right;
}
.cd-form .error-message p {
  background: #e94b35;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: .25em;
  padding: 16px;
}
.cd-form .error {
  border-color: #e94b35 !important;
}
@media only screen and (min-width: 600px) {
#SocialButtons { display: block; }
#header_wrapper { margin:0 auto; width:1000px; height:80px; max-height: 80px; padding-top: 10px; }
#header { width:1000px; float:left; padding: 5px 0px 5px 0px; height:80px; max-height: 80px; }
#header_image { width:200px; float:left; height:65px; min-height:65px; background-position:center; background-repeat:no-repeat; background-size:cover; }

  .cd-form div {
    /* form element wrapper */
    margin: 32px 0;
  }
  .cd-form legend + div {
    /* reduce margin-top for first form element after the legend */
    margin-top: 20px;
  }
  .cd-form h4, .cd-form .cd-label {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .cd-form input[type="text"],
  .cd-form input[type="email"],
  .cd-form textarea,
  .cd-form select {
    padding: 16px;
  }
}

@-webkit-keyframes cd-bounce {
  0%, 100% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes cd-bounce {
  0%, 100% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(0.8);
  }
}
@keyframes cd-bounce {
  0%, 100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
}
/* -------------------------------- 

Custom icons

-------------------------------- */
.cd-form .icon input, .cd-form .icon select, .cd-form .icon textarea {
  padding-left: 54px !important;
}
.cd-form .user {
  background: url("http://www.income-systems.com/wp-content/themes/img/cd-icon-user.svg") no-repeat 16px center;
}
.cd-form [required].user {
  background: url("http://www.income-systems.com/wp-content/themes/img/cd-icon-user.svg") no-repeat 16px center, url("http://www.income-systems.com/wp-content/themes/img/cd-required.svg") no-repeat top right;
}
.cd-form .company {
  background: url("http://www.income-systems.com/wp-content/themes/img/cd-icon-company.svg") no-repeat 16px center;
}
.cd-form [required].company {
  background: url("http://www.income-systems.com/wp-content/themes/img/cd-icon-company.svg") no-repeat 16px center, url("http://www.income-systems.com/wp-content/themes/img/cd-required.svg") no-repeat top right;
}
.cd-form .email {
  background: url("http://www.income-systems.com/wp-content/themes/img/cd-icon-email.svg") no-repeat 16px center;
}
.cd-form [required].email {
  background: url("http://www.income-systems.com/wp-content/themes/img/cd-icon-email.svg") no-repeat 16px center, url("http://www.income-systems.com/wp-content/themes/img/cd-required.svg") no-repeat top right;
}
.cd-form .budget {
  background: url("http://www.income-systems.com/wp-content/themes/img/cd-icon-budget.svg") no-repeat 16px center;
}
.cd-form .message {
  background: url("http://www.income-systems.com/wp-content/themes/img/cd-icon-message.svg") no-repeat 16px 16px;
}
.cd-form [required].message {
  background: url("http://www.income-systems.com/wp-content/themes/img/cd-icon-message.svg") no-repeat 16px 16px, url("http://www.income-systems.com/wp-content/themes/img/cd-required.svg") no-repeat top right;
}

/* -------------------------------- 

FLoating labels 

-------------------------------- */
.js .floating-labels div {
  margin: 28px 0;
}
.js .floating-labels .cd-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 1.6rem;
  cursor: text;
  -webkit-transition: top 0.2s, left 0.2s, font-size 0.2s;
  -moz-transition: top 0.2s, left 0.2s, font-size 0.2s;
  transition: top 0.2s, left 0.2s, font-size 0.2s;
}
.js .floating-labels .icon .cd-label {
  left: 56px;
}
.js .floating-labels .cd-label.float {
  /* move label out the input field */
  font-size: 1.2rem;
  top: -16px;
  left: 0 !important;
}
@media only screen and (min-width: 600px) {
  .js .floating-labels legend + div {
    /* reduce margin-top for first form element after the legend */
    margin-top: 16px;
  }
  .js .floating-labels .cd-label {
    top: 20px;
  }
}


body { background:#FFFFFF; width:100%; margin:0px; min-width:1020px; }
#header_wrapper { margin:0 auto; width:1000px; height:110px; max-height: 110px; }
#header { width:1000px; float:left; height:110px; max-height: 110px; }
#header_image { width:245px; float:left; height:80px; min-height:80px; background-position:center; background-repeat:no-repeat; background-size:cover;  }
#header_option { float:right; padding-top: 12px; cursor:pointer; }
#header_option a { font-family: "Open Sans", sans-serif; font-size:19px; color:#000000; }
#header_option a:hover { font-family: "Open Sans", sans-serif; font-size:19px; color:#FF0000; }

#page_wrapper { float:left; width:100%; }
#MainImage { background-position:center; background-repeat:no-repeat; background-size:cover; width:100%; height:340px; min-height:340px; }
#MainImageText { width:1000px; margin:0 auto; padding-top:20px; }
#MainImageText h1, h2 { font-family: "Open Sans", sans-serif; color:#FFF; }
#MainImageText h1 { font-size:37px; }
#MainImageText h2 { font-size:23px; margin-top:-15px; }
#SecondarySectionText { float:left; font-family: "Open Sans", sans-serif; text-align:center; margin: 30px 0px 20px 0px; }
#SecondarySectionText h2 { font-family: "Open Sans", sans-serif; font-size:35px; font-weight:bold; color:#333; margin-bottom: -60px; }
#SecondarySectionText h3 { font-family: "Open Sans", sans-serif; font-size:20px; font-weight:normal; color:#333; margin-top:-10px; padding-bottom: 25px; }
#MainImage2 { float:left; background:#D1E5F0; width:100%; min-width:1000px; height:120px; min-height:120px; }
#Footer { float:left; background:#333; width:100%; height:330px; min-height:330px; }
#FooterCRBar { float:left; background:#000; width:100%; height: 40px; min-height: 40px; padding: 10px 0px; }
#footer_container { width:1000px; margin:0 auto; }
#LowerDiv { margin:0 auto; width:1000px; padding: 20px 0px; }

#solutions-pannel-options { float:left; width:100%; text-align:center; }
#solutions-item-products { width:185px; float:left; height:250px; min-height:250px; text-align:center; margin-bottom: 30px; }

#solutions-pannel-options-selections { float:left; }
#solutions-item-products-selections { width:100%; min-height:250px; text-align:left; padding:15px 35px; margin-bottom: 30px; }
#solutions-item-products-selections:not(:last-child) { border-bottom:1px solid #666; }

#solutions-item-products-option { float:left; width:100%; text-align:center; padding:15px 35px; margin-bottom: 30px; }
#solutions-item-products-option p { color:#000; text-align:left; }
#solutions-item-products-option:not(:last-child) { border-bottom:1px solid #E70019; }

#SetBG_LowerDiv #LowerDiv h1 { text-align:center; }
#solutions-item-products-selections #text-header-selection-item h3 { text-align:left; }
#solutions-item-products-selections #text-description-selection-item p { text-align:left; }

#selection-pannel-options { float:left; height:500px; min-height:500px; }
#selection-item { width:260px; float:left; height:300px; min-height:300px; text-align:center; padding:30px 35px; margin-bottom: 30px; }
#selection-item-products { width:320px; float:left; height:500px; min-height:500px; text-align:center; padding:15px 35px; margin-bottom: 30px; }
#image-selection-pannel-banner { width:1000px; padding-top: 15px; margin:0 auto; }
#image-selection-item-banner { width:165px; float:left; text-align:center; max-height: 70px; height: 70px; overflow:hidden; }
#image-selection-pannel { width:1000px; margin:0 auto; padding-top: 15px; }
#image-selection-item { width:240px; float:left; text-align:center; margin-bottom: 20px; height:170px; min-height:170px; margin-right:35px; background-size:cover; }
#image-selection-item-sp { width:180px; float:left; text-align:center; margin-bottom: 20px; height:170px; min-height:170px; margin-right:35px; background-size:cover; }
#selection-item #text-header-selection-item { padding-top:30px; }
#text-header-selection-item h3, p { font-family: "Open Sans", sans-serif; text-align:center; }
#text-header-selection-item h3 { font-weight:bold; }
#text-header-selection-item p { font-weight:normal; }
#text-description-selection-item p { padding-bottom: 15px; margin-top: -10px; text-align:center; }
#SetBG_LowerDiv { background:#FAF9F5; float:left; width:100%; }
#SocialButtons { width:400px; float:right; height:50px; display: block; }
#SocialButton { width:50px; text-align:center; float:right; }
#Desktop_SectionInfographic { background-position:center; background-repeat:no-repeat; background-size:contain; min-height:650px; }
#Mobile_SectionInfographic { display:none; }

/* The Div that surrounds the Drop Down Menu*/
#navigation {
	float:left;
	width:100%;
	background-colour: #FFF; /* Background Color for your wp_nav_menu */
	font: 12px/.5 Arial, sans-serif; /* Font used in the wp_nav_menu */
	border-top:1px solid #FFFFFF; /* Border if you want one */
	border-bottom:5px solid #FFFFFF;
	cursor:pointer;
	text-align:left;
}

/* Menu Bar List */
ul.dropdown {
list-style:none; /* Gets rid of bullets in the list */
float:left;
width:100%;
text-align:left;
}

ul.dropdown li{
float:left;
position:relative;
text-align:center;
width:135px;
z-index:1000;
}

ul.dropdown a { /* Menu link styling */
color:#333; /* Text color of links */
text-decoration:none; /* Gets rid of underline for links */
text-align:left;
}

/* Styling when a link is hovered over */
ul.dropdown li:hover a {
color: #FFF; /* Text color of links */
text-align:left;
}

/* Displays Links as Blocks */
ul.dropdown li ul a {
display:block;
text-align:left;
}

/* Styling for all of the Sub Menus  */

ul.dropdown ul {
list-style: none; /* Gets rid of bullets */
margin:-2px;
padding:0;
width:240px; /* Width of the Drop Down Box */
position:absolute; /* States that you are going to define exactly in pixels where the drop down appears */
text-align:left;
border:10px solid #FFF;
}

ul.dropdown li ul {
top:23px; /* The Drop Down Box appears 24px below the menu when the menu is hovered over*/
text-align:left;
left:-10px;
}

ul.dropdown ul ul { /* Styling for secondary drop downs (Drop Downs of a Drop Down) */
top:0;
left:100%;
text-align:left;
}

ul.dropdown ul li {
float:none;
padding: 10px 0px;
width:220px;
}

/* Makes drop downs not appear by default unless the mouse hovers */
ul.dropdown ul,
ul.dropdown li:hover ul ul,
ul.dropdown ul li:hover ul ul
{ display: none; background-color:#FFF; color:#E70019; }

ul.dropdown li:hover ul,
ul.dropdown ul li:hover ul ,
ul.dropdown ul li ul li:hover ul
{
	display: block;
	background-color:#FFF;
	color:#333;
	filter:alpha(opacity=95); /* IE */
	-moz-opacity:0.95; /* Mozilla */
	opacity: 0.95; /* CSS3 */
}

ul.dropdown li * a {
	color: #000;
	font-size:15px;
}
ul.dropdown li * a:hover { /* Styling for every link that is hovered over */
	color: #E70019;
}

#LearnMoreButton {
  border: none;
  background: #2c97de;
  border-radius: .25em;
  padding: 16px 20px;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  width:235px;
  float:left;
}
#LearnMoreButton:hover {
  background: #42a2e1;
}
#LearnMoreButton:focus {
  outline: none;
  background: #2b3e51;
}
#LearnMoreButton:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}

#IFRAME_IncomeAccountCheckerWebPage { width:930px; min-height:350px; }
#IFRAME_IncomeAccountCheckerWebPageSolutions { width:930px; min-height:350px; margin-top:-55px; }
#SortCodeAccountCodeValidator { float:left; width:930px; margin-top:15px; }
#SortCodeAccountCodeValidator p { font-family: "Open Sans", sans-serif; text-align:center; font-size:16px; }
#SortCodeAccountCodeValidator #SortCodeAccountCodeValidator_Inner { margin:0 auto; width:930px; }
#SortCodeAccountCodeValidator #SortCodeAccountCodeValidator_Inner #SortCodeAccountCodeValidator_Column { text-align:left; padding-top:5px; width:285px; float:left; margin:0px; margin-top: 10px; height: 40px; min-height: 40px; }
#SortCodeAccountCodeValidator #SortCodeAccountCodeValidator_Inner #SortCodeAccountCodeValidator_TextColumn { text-align:left; width:180px; float:left; padding-top:15px; margin:0px; margin-top: 10px; height: 40px; min-height: 40px; }
#SortCodeAccountCodeValidator #SortCodeAccountCodeValidator_Inner #SortCodeAccountCodeValidator_TextColumnLEFT { text-align:left; width:180px; float:left; padding-top:15px; margin:0px; margin-top: 10px; height: 40px; min-height: 40px; }
#SortCodeAccountCodeValidator_TextColumnLEFT { padding-left:20px; }
#SortCodeAccountCodeValidator #SortCodeAccountCodeValidator_Inner div a { font-family: "Open Sans", sans-serif; text-align:center; font-size:16px; }

.CheckDetails {
  border: none;
  background: #2c97de;
  border-radius: .25em;
  padding: 8px 10px;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  width:290px;
  float:left;
  font-size:16px;
}
.CheckDetails:hover {
  background: #42a2e1;
}
.CheckDetails:focus {
  outline: none;
  background: #2b3e51;
}
.CheckDetails:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
}

#ContactFormHomePage { float:left; width:600px; margin-top:20px; }
#TwitterHomePage { float:left; width:400px; margin-top:40px; padding-right:40px; }
#GoogleMapsFooter { width:310px; height:196.5px; }
#MobileContactContainer { display:none; }
#ContactContainer { float:left; width:320px; padding-right:10px; }
#MenuPush_Header { display:none; }
#mobile_header_option { display:none; }
#SecondaryPageImage { background-position:center; background-repeat:no-repeat; background-size:cover; width:100%; height:150px; min-height:150px; }
#Reviews { float:left; width:100%; min-width:1000px; margin-bottom:25px; }
#Reviews-Pannel { width:1000px; padding-top: 15px; margin:0 auto; }
#Reviews-Pannel-Item { float:left; text-align:center; width:290px; height:325px; border:1px dotted #E70019; border-radius:4px; margin:15px 0px; }
#Reviews-Pannel-Item-Image { background-size:100%; height:200px; background-repeat:no-repeat; background-position:center; margin:15px; }
#Reviews-Pannel-Item #LearnMoreButton { width:210px; margin:20px 40px; }

#ReviewBox { margin:0 auto; width:670px; max-width:670px; height:400px; overflow-y:scroll; SCROLLBAR-FACE-COLOR:#CCC; SCROLLBAR-HIGHLIGHT-COLOR:#CCC; SCROLLBAR-SHADOW-COLOR:#FFFFFF; SCROLLBAR-3DLIGHT-COLOR:#FFFFFF; SCROLLBAR-ARROW-COLOR:#FFFFFF; SCROLLBAR-TRACK-COLOR:#FFFFFF; SCROLLBAR-BOTTOM-VISIBILITY:hidden; }
#ReviewBox h2, p { font-family: "Open Sans", sans-serif; text-align:center; }
#ReviewBox h2 { font-weight:bold; color:#E70019; }
#ReviewBox p { font-weight:normal; color:#000; }
#ReviewBox #Reviewer { font-weight:normal; color:#000; font-weight:bold; }
#ReviewBox-Star { font-size:25px; text-align:center; color:#E70019; }

#CaseStudies { float:left; width:100%; min-width:1000px; margin-bottom:25px; }
#CaseStudies-Pannel { width:1000px; padding-top: 15px; margin:0 auto; }
#CaseStudies-Pannel-Item { float:left; text-align:center; width:460px; height:550px; border:1px dotted #E70019; border-radius:4px; margin:15px 0px; }
#CaseStudies-Pannel-Item-Image-Box { margin:0 auto; width: 295px; }
#CaseStudies-Pannel-Item-Image { background-size:50%; height:210px; background-repeat:no-repeat; background-position:center; margin:15px; }
#CaseStudies-Pannel-Item-Button { width: 135px; float: left; margin-left: 15px; }
#CaseStudies-Pannel-Item #LearnMoreButton { width:133px; }
.CaseStudies-Pannel-Item-Text { margin:0 auto; width:440px; max-width:440px; height:225px; overflow-y:scroll; SCROLLBAR-FACE-COLOR:#CCC; SCROLLBAR-HIGHLIGHT-COLOR:#CCC; SCROLLBAR-SHADOW-COLOR:#FFFFFF; SCROLLBAR-3DLIGHT-COLOR:#FFFFFF; SCROLLBAR-ARROW-COLOR:#FFFFFF; SCROLLBAR-TRACK-COLOR:#FFFFFF; SCROLLBAR-BOTTOM-VISIBILITY:hidden; }
.CaseStudies-Pannel-Item-Text p { font-family: "Open Sans", sans-serif; text-align:left; }

#Partners { float:left; width:100%; min-width:1000px; margin-bottom:25px; }
#Partners-Pannel { width:1000px; padding-top: 15px; margin:0 auto; }
#Partners-Pannel-Item { float:left; text-align:center; width:460px; height:550px; border:1px dotted #E70019; border-radius:4px; margin:15px 0px; }
#Partners-Pannel-Item-Image-Box { margin:0 auto; width: 295px; }
#Partners-Pannel-Item-Image { background-size:100%; height:210px; background-repeat:no-repeat; background-position:center; margin:15px; }
#Partners-Pannel-Item-Button { width: 210px; float: left; margin-left: 15px; }
#Partners-Pannel-Item #LearnMoreButton { width:200px; }
.Partners-Pannel-Item-Text { margin:0 auto; width:440px; max-width:440px; height:215px; overflow-y:scroll; SCROLLBAR-FACE-COLOR:#CCC; SCROLLBAR-HIGHLIGHT-COLOR:#CCC; SCROLLBAR-SHADOW-COLOR:#FFFFFF; SCROLLBAR-3DLIGHT-COLOR:#FFFFFF; SCROLLBAR-ARROW-COLOR:#FFFFFF; SCROLLBAR-TRACK-COLOR:#FFFFFF; SCROLLBAR-BOTTOM-VISIBILITY:hidden; margin-top:10px; }
.Partners-Pannel-Item-Text p { font-family: "Open Sans", sans-serif; text-align:left; }

#OurTeam { float:left; width:100%; min-width:1000px; margin-bottom:25px; }
#TeamMembers { width:1000px; padding-top: 15px; margin:0 auto; text-align: center; }
#OurTeam-Members { display:inline-block; text-align:center; width:245px; height:210px; margin: 25px 0px; } /* width:333px; for 4 per row */
#OurTeam-Pannel-Item-Image { margin:0 auto; border-radius:50%; width:150px; height:150px; background-size:150px 150px; text-align: center; }
.OurTeam-Pannel-Item-Name p { font-family: "Open Sans", sans-serif; text-align:center; font-weight:bold; color:#E70019; }
.OurTeam-Pannel-Item-Title p { font-family: "Open Sans", sans-serif; text-align:center; line-height: 0px; }

#About { float:left; width:100%; min-width:1000px; margin-bottom:25px; }
#About_Options { width:1000px; padding-top: 15px; margin:0 auto; text-align:left; }
#About_Options h2 { font-family: "Open Sans", sans-serif; font-size:23px; font-weight:bold; color:#333; text-align:left; padding-bottom:10px; border-bottom: 1px solid #E70019; }
#About_Options h3 p { font-family: "Open Sans", sans-serif; font-size:16px; font-weight:normal; color:#333; padding-bottom: 15px; text-align:left; line-height:25px; }

#ContactFormContactPage { float:left; width:600px; max-width:600px; margin-top:20px; vertical-align:top; }
#ContactDetailsContactPage { float:right; width:350px; margin-top:40px; padding-left:40px; vertical-align:top; }
#ContactDetailsContactPage h3 { font-weight:bold; font-size:20px; margin:15px 0px; text-align:left; }
#ContactDetailsContactPage p { font-size:14px; text-align:left; line-height: 5px; text-align:left; }
#ContactDetailsContactPage_Padding { padding-top:3px; }

#ContactMessageContactThankYouPage { float:left; width:600px; max-width:600px; margin-top:20px; vertical-align:top; }
#ContactDetailsContactThankYouPage { float:right; width:350px; margin-top:20px; padding-left:40px; vertical-align:top; }
#ContactDetailsContactThankYouPage h3 { font-weight:bold; font-size:20px; margin:15px 0px; text-align:left; }
#ContactDetailsContactThankYouPage p { font-size:14px; text-align:left; line-height: 5px; text-align:left; }

#YouTubeDemoIFrame { width:1000px; height:600px; }
#MobileDescription { display:none; }
#DesktopDescription { display:block; }

#Mobile { display:none; }
#Desktop { display:block; }

.w2linput {
    padding: 12px;
    border: 1px solid #cfd9db;
    background-color: #ffffff;
    border-radius: .25em;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
    font-family: "Open Sans", sans-serif;
    font-size: 1.6rem;
    color: #2b3e51;
    display: block;
    width: 100%;
}